#!/bin/bash

PKMKSHELLUTILITY=$1/Contents/Resources/pkmkshellutility

RESULT=`$PKMKSHELLUTILITY --sysctl hw.cputype`
if [ $RESULT != '18' ]; then
	exit 97
fi

RESULT=`$PKMKSHELLUTILITY --sysctl kern.osrelease`
if [ $RESULT < '9.0.0' ]; then
	exit 97
fi

exit 0